home *** CD-ROM | disk | FTP | other *** search
/ Professor Iris Fun Field Trip: Seaside Adventure / Professor Iris - Fun Field Trip: Seaside Adventure.iso / pc / discovry / shared.dir / 00897_Tutorial Button-sprite script.ls < prev    next >
Encoding:
Text File  |  1995-05-03  |  453 b   |  18 lines

  1. on mouseDown
  2.   doButtonHilite()
  3. end
  4.  
  5. on mouseUp
  6.   global gCurrentPageNum, gPageNum, gCurrentCategoryNum, gCategoryNum, gFromIndexFlag, gIndexTutorialReturn
  7.   if rollOver(the clickOn) then
  8.     puppetSound("mouseClick")
  9.     updateStage()
  10.     set gFromIndexFlag to 1
  11.     set gPageNum to gCurrentPageNum
  12.     set gCategoryNum to gCurrentCategoryNum
  13.     doIndexCleanUp()
  14.     set gIndexTutorialReturn to the movieName
  15.     go("Name", "Intro2.dir")
  16.   end if
  17. end
  18.